1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
import { useEffect, useState } from "react";
import { View } from "react-native";
import { router, useLocalSearchParams } from "expo-router";
import { Button } from "@/components/ui/Button";
import CustomSafeAreaView from "@/components/ui/CustomSafeAreaView";
import FullPageSpinner from "@/components/ui/FullPageSpinner";
import { Input } from "@/components/ui/Input";
import { Text } from "@/components/ui/Text";
import { useToast } from "@/components/ui/Toast";
import { useQuery } from "@tanstack/react-query";
import { useEditBookmarkList } from "@karakeep/shared-react/hooks/lists";
import { useTRPC } from "@karakeep/shared-react/trpc";
const EditListPage = () => {
const { slug: listId } = useLocalSearchParams<{ slug?: string | string[] }>();
const [text, setText] = useState("");
const [query, setQuery] = useState("");
const { toast } = useToast();
const api = useTRPC();
const { mutate, isPending: editIsPending } = useEditBookmarkList({
onSuccess: () => {
dismiss();
},
onError: (error) => {
// Extract error message from the error object
let errorMessage = "Something went wrong";
if (error.data?.zodError) {
errorMessage = Object.values(error.data.zodError.fieldErrors)
.flat()
.join("\n");
} else if (error.message) {
errorMessage = error.message;
}
toast({
message: errorMessage,
variant: "destructive",
});
},
});
if (typeof listId !== "string") {
throw new Error("Unexpected param type");
}
const { data: list, isLoading: fetchIsPending } = useQuery(
api.lists.get.queryOptions({
listId,
}),
);
const dismiss = () => {
router.back();
};
useEffect(() => {
if (!list) return;
setText(list.name ?? "");
setQuery(list.query ?? "");
}, [list?.id, list?.query, list?.name]);
const onSubmit = () => {
if (!text.trim()) {
toast({ message: "List name can't be empty", variant: "destructive" });
return;
}
if (list?.type === "smart" && !query.trim()) {
toast({
message: "Smart lists must have a search query",
variant: "destructive",
});
return;
}
mutate({
listId,
name: text.trim(),
query: list?.type === "smart" ? query.trim() : undefined,
});
};
const isPending = fetchIsPending || editIsPending;
return (
<CustomSafeAreaView>
{isPending ? (
<FullPageSpinner />
) : (
<View className="gap-3 px-4">
{/* List Type Info - not editable */}
<View className="gap-2">
<Text className="text-sm text-muted-foreground">List Type</Text>
<View className="flex flex-row gap-2">
<View className="flex-1">
<Button
variant={list?.type === "manual" ? "primary" : "secondary"}
disabled
>
<Text>Manual</Text>
</Button>
</View>
<View className="flex-1">
<Button
variant={list?.type === "smart" ? "primary" : "secondary"}
disabled
>
<Text>Smart</Text>
</Button>
</View>
</View>
</View>
{/* List Name */}
<View className="flex flex-row items-center gap-1">
<Text className="shrink p-2">{list?.icon || "🚀"}</Text>
<Input
className="flex-1 bg-card"
onChangeText={setText}
value={text}
placeholder="List Name"
autoFocus
autoCapitalize={"none"}
/>
</View>
{/* Smart List Query Input */}
{list?.type === "smart" && (
<View className="gap-2">
<Text className="text-sm text-muted-foreground">
Search Query
</Text>
<Input
className="bg-card"
onChangeText={setQuery}
value={query}
placeholder="e.g., #important OR list:work"
autoCapitalize={"none"}
/>
<Text className="text-xs italic text-muted-foreground">
Smart lists automatically show bookmarks matching your search
query
</Text>
</View>
)}
<Button disabled={isPending} onPress={onSubmit}>
<Text>Save</Text>
</Button>
</View>
)}
</CustomSafeAreaView>
);
};
export default EditListPage;
|